home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-03-04 | 641 b | 18 lines | [TEXT/ToyS] |
- property gasAlertText : {}
-
- on run
- automate alerts after 0
- display dialog "Time me out right away!" buttons {"Cancel", "OK"} default button 2
-
- set gasAlertText to automate alerts after 30
-
- activate
- display dialog "Time me out after 30 seconds, dude!" buttons {"OK"}
-
- automate alerts after 60 with pointer jumping
- display dialog "Do you want to keep timeouts of 1 minute active after we quit?" buttons {"Nope", "Yup"} default button 2
-
- if (the button returned of the result is "Nope") then ¬
- set gasAlertText to automate alerts after -1 -- deactivate it and get alert text, comment this line out to keep timeouts active
- end run
-